home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / esc.jar / com / extensibility / xa / undo / DgmPMenuCMAnyEmptyUndoable.class (.txt) < prev    next >
Encoding:
Java Class File  |  2000-06-30  |  947 b   |  29 lines

  1. package com.extensibility.xa.undo;
  2.  
  3. import com.extensibility.app.UI;
  4. import com.extensibility.xa.DeclTableModel;
  5. import com.extensibility.xa.ElementTableModel;
  6. import com.extensibility.xml.BaseDeclaration;
  7.  
  8. public class DgmPMenuCMAnyEmptyUndoable extends CMAnyEmptyUndoable {
  9.    public DgmPMenuCMAnyEmptyUndoable(DeclTableModel var1, BaseDeclaration var2, boolean var3) {
  10.       super((ElementTableModel)var1, var2, var3);
  11.    }
  12.  
  13.    public String getPresentationName() {
  14.       return UI.getString("undo.diagram.edit");
  15.    }
  16.  
  17.    public void undo() {
  18.       super.undo();
  19.    }
  20.  
  21.    public void doCommand() {
  22.       super.doCommand();
  23.    }
  24.  
  25.    public void redo() {
  26.       super.redo();
  27.    }
  28. }
  29.